home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_Texture_Factory_Defau < prev    next >
Encoding:
Text File  |  2003-04-22  |  836 b   |  33 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for Texture effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Texture():
  14.     return {
  15.         'Angle': 315,
  16.         'Color': (255, 255, 255),
  17.         'TextureName': '',
  18.         'Intensity': 50,
  19.         'Shininess': 0,
  20.         'GeneralSettings': {
  21.             'AutoActionMode': 0,
  22.             'ExecutionMode': 0
  23.             },
  24.         'Depth': 1,
  25.         'Ambience': 0,
  26.         'Elevation': 30,
  27.         'Smoothness': 0,
  28.         'Size': 100
  29.         }
  30.  
  31. def Do(Environment):
  32.     App.Do( Environment, 'Texture', Preset_Texture())
  33.